New upstream release
authorSimon McVittie <smcv@debian.org>
Fri, 15 Sep 2017 10:20:19 +0000 (11:20 +0100)
committerSimon McVittie <smcv@debian.org>
Fri, 15 Sep 2017 10:20:27 +0000 (11:20 +0100)
Drop all current patches, applied upstream.

debian/changelog
debian/patches/Remove-shebang-from-bash-completions.patch [deleted file]
debian/patches/basic-test-Skip-explicit-uses-of-bare-user-if-no-user-xat.patch [deleted file]
debian/patches/libtest-Allow-skipping-single-checks-without-user-xattrs.patch [deleted file]
debian/patches/series [deleted file]
debian/patches/test-basic-user-only-Skip-final-step-if-no-user-xattrs.patch [deleted file]
debian/patches/test-libarchive-import-Skip-if-extended-attributes-are-un.patch [deleted file]
debian/patches/test-pull-bareuser.sh-This-test-uses-bare-user-hence-need.patch [deleted file]

index 9d7d6c212015cc60073c737a86b2b42fb6ca867b..9578c0cefff4abbbecd6b40141ac4e4e1cde61b0 100644 (file)
@@ -1,6 +1,7 @@
-ostree (2017.10-2) UNRELEASED; urgency=medium
+ostree (2017.11-1) UNRELEASED; urgency=medium
 
-  * Mark all patches as applied upstream for 2017.11
+  * New upstream release
+    - Drop all current patches, applied upstream
 
  -- Simon McVittie <smcv@debian.org>  Wed, 30 Aug 2017 10:09:26 +0100
 
diff --git a/debian/patches/Remove-shebang-from-bash-completions.patch b/debian/patches/Remove-shebang-from-bash-completions.patch
deleted file mode 100644 (file)
index 2ff5e0a..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-From: Simon McVittie <smcv@collabora.com>
-Date: Tue, 29 Aug 2017 17:05:16 +0100
-Subject: Remove shebang from bash completions
-
-bash completions are to be sourced. It makes little sense to
-execute them.
-
-Signed-off-by: Simon McVittie <smcv@debian.org>
-Forwarded: https://github.com/ostreedev/ostree/pull/1119
-Applied-upstream: 2017.11, commit:355e8516b04801caf50b0b8a218fc8f6321d8d05
----
- bash/ostree | 2 --
- 1 file changed, 2 deletions(-)
-
-diff --git a/bash/ostree b/bash/ostree
-index f4305f6..da8b9af 100644
---- a/bash/ostree
-+++ b/bash/ostree
-@@ -1,5 +1,3 @@
--#!/bin/bash
--#
- # bash completion file for ostree commands
- #
- # This script provides completion of:
diff --git a/debian/patches/basic-test-Skip-explicit-uses-of-bare-user-if-no-user-xat.patch b/debian/patches/basic-test-Skip-explicit-uses-of-bare-user-if-no-user-xat.patch
deleted file mode 100644 (file)
index 7a826f8..0000000
+++ /dev/null
@@ -1,192 +0,0 @@
-From: Simon McVittie <smcv@collabora.com>
-Date: Tue, 29 Aug 2017 17:02:43 +0100
-Subject: basic-test: Skip explicit uses of bare-user if no user xattrs
-
-Signed-off-by: Simon McVittie <smcv@debian.org>
-Forwarded: https://github.com/ostreedev/ostree/pull/1120
-Applied-upstream: 2017.11, commit:41e6871e514dda1392354f642edb3484cf79af47
----
- tests/basic-test.sh | 138 +++++++++++++++++++++++++++++-----------------------
- 1 file changed, 77 insertions(+), 61 deletions(-)
-
-diff --git a/tests/basic-test.sh b/tests/basic-test.sh
-index 9ae26f4..de4bd44 100644
---- a/tests/basic-test.sh
-+++ b/tests/basic-test.sh
-@@ -106,19 +106,23 @@ echo "ok shortened checksum"
- (cd repo && ${CMD_PREFIX} ostree rev-parse test2)
- echo "ok repo-in-cwd"
--rm test-repo -rf
--ostree_repo_init test-repo --mode=bare-user
--ostree_repo_init test-repo --mode=bare-user
--rm test-repo -rf
--echo "ok repo-init on existing repo"
--
--rm test-repo -rf
--ostree_repo_init test-repo --mode=bare-user
--${CMD_PREFIX} ostree --repo=test-repo refs
--rm -rf test-repo/tmp
--${CMD_PREFIX} ostree --repo=test-repo refs
--assert_has_dir test-repo/tmp
--echo "ok autocreate tmp"
-+if ! skip_one_without_user_xattrs; then
-+    rm test-repo -rf
-+    ostree_repo_init test-repo --mode=bare-user
-+    ostree_repo_init test-repo --mode=bare-user
-+    rm test-repo -rf
-+    echo "ok repo-init on existing repo"
-+fi
-+
-+if ! skip_one_without_user_xattrs; then
-+    rm test-repo -rf
-+    ostree_repo_init test-repo --mode=bare-user
-+    ${CMD_PREFIX} ostree --repo=test-repo refs
-+    rm -rf test-repo/tmp
-+    ${CMD_PREFIX} ostree --repo=test-repo refs
-+    assert_has_dir test-repo/tmp
-+    echo "ok autocreate tmp"
-+fi
- rm checkout-test2 -rf
- $OSTREE checkout test2 checkout-test2
-@@ -262,27 +266,31 @@ cd ${test_tmpdir}
- assert_file_has_content diff-test2-2 'M */four$'
- echo "ok diff file changing type"
--cd ${test_tmpdir}
--mkdir repo2
--# Use a different mode to test hardlinking metadata only
--if grep -q 'mode=archive' repo/config || is_bare_user_only_repo repo; then
--    opposite_mode=bare-user
--else
--    opposite_mode=archive
-+if ! skip_one_without_user_xattrs; then
-+    cd ${test_tmpdir}
-+    mkdir repo2
-+    # Use a different mode to test hardlinking metadata only
-+    if grep -q 'mode=archive' repo/config || is_bare_user_only_repo repo; then
-+        opposite_mode=bare-user
-+    else
-+        opposite_mode=archive
-+    fi
-+    ostree_repo_init repo2 --mode=$opposite_mode
-+    ${CMD_PREFIX} ostree --repo=repo2 pull-local repo
-+    test2_commitid=$(${CMD_PREFIX} ostree --repo=repo rev-parse test2)
-+    test2_commit_relpath=/objects/${test2_commitid:0:2}/${test2_commitid:2}.commit
-+    assert_files_hardlinked repo/${test2_commit_relpath} repo2/${test2_commit_relpath}
-+    echo "ok pull-local (hardlinking metadata)"
- fi
--ostree_repo_init repo2 --mode=$opposite_mode
--${CMD_PREFIX} ostree --repo=repo2 pull-local repo
--test2_commitid=$(${CMD_PREFIX} ostree --repo=repo rev-parse test2)
--test2_commit_relpath=/objects/${test2_commitid:0:2}/${test2_commitid:2}.commit
--assert_files_hardlinked repo/${test2_commit_relpath} repo2/${test2_commit_relpath}
--echo "ok pull-local (hardlinking metadata)"
--cd ${test_tmpdir}
--rm repo2 -rf && mkdir repo2
--ostree_repo_init repo2 --mode=$opposite_mode
--${CMD_PREFIX} ostree --repo=repo2 pull-local --bareuseronly-files repo test2
--${CMD_PREFIX} ostree --repo=repo2 fsck -q
--echo "ok pull-local --bareuseronly-files"
-+if ! skip_one_without_user_xattrs; then
-+    cd ${test_tmpdir}
-+    rm repo2 -rf && mkdir repo2
-+    ostree_repo_init repo2 --mode=$opposite_mode
-+    ${CMD_PREFIX} ostree --repo=repo2 pull-local --bareuseronly-files repo test2
-+    ${CMD_PREFIX} ostree --repo=repo2 fsck -q
-+    echo "ok pull-local --bareuseronly-files"
-+fi
- # This is mostly a copy of the suid test in test-basic-user-only.sh,
- # but for the `pull --bareuseronly-files` case.
-@@ -303,11 +311,13 @@ fi
- assert_file_has_content err.txt 'object.*\.file: invalid mode.*with bits 040.*'
- echo "ok pull-local (bareuseronly files)"
--cd ${test_tmpdir}
--${CMD_PREFIX} ostree --repo=repo2 checkout ${CHECKOUT_U_ARG} test2 test2-checkout-from-local-clone
--cd test2-checkout-from-local-clone
--assert_file_has_content yet/another/tree/green 'leaf'
--echo "ok local clone checkout"
-+if ! skip_one_without_user_xattrs; then
-+    cd ${test_tmpdir}
-+    ${CMD_PREFIX} ostree --repo=repo2 checkout ${CHECKOUT_U_ARG} test2 test2-checkout-from-local-clone
-+    cd test2-checkout-from-local-clone
-+    assert_file_has_content yet/another/tree/green 'leaf'
-+    echo "ok local clone checkout"
-+fi
- $OSTREE checkout -U test2 checkout-user-test2
- echo "ok user checkout"
-@@ -496,24 +506,28 @@ cd ${test_tmpdir}
- $OSTREE checkout test2 --allow-noent --subpath /enoent 2>/dev/null
- echo "ok subdir noent"
--cd ${test_tmpdir}
--mkdir repo3
--ostree_repo_init repo3 --mode=bare-user
--${CMD_PREFIX} ostree --repo=repo3 pull-local --remote=aremote repo test2
--${CMD_PREFIX} ostree --repo=repo3 rev-parse aremote/test2
--echo "ok pull-local with --remote arg"
-+if ! skip_one_without_user_xattrs; then
-+    cd ${test_tmpdir}
-+    mkdir repo3
-+    ostree_repo_init repo3 --mode=bare-user
-+    ${CMD_PREFIX} ostree --repo=repo3 pull-local --remote=aremote repo test2
-+    ${CMD_PREFIX} ostree --repo=repo3 rev-parse aremote/test2
-+    echo "ok pull-local with --remote arg"
-+fi
--cd ${test_tmpdir}
--${CMD_PREFIX} ostree --repo=repo3 prune
--find repo3/objects -name '*.commit' > objlist-before-prune
--rm repo3/refs/heads/* repo3/refs/mirrors/* repo3/refs/remotes/* -rf
--${CMD_PREFIX} ostree --repo=repo3 prune --refs-only
--find repo3/objects -name '*.commit' > objlist-after-prune
--if cmp -s objlist-before-prune objlist-after-prune; then
--    fatal "Prune didn't delete anything!"
-+if ! skip_one_without_user_xattrs; then
-+    cd ${test_tmpdir}
-+    ${CMD_PREFIX} ostree --repo=repo3 prune
-+    find repo3/objects -name '*.commit' > objlist-before-prune
-+    rm repo3/refs/heads/* repo3/refs/mirrors/* repo3/refs/remotes/* -rf
-+    ${CMD_PREFIX} ostree --repo=repo3 prune --refs-only
-+    find repo3/objects -name '*.commit' > objlist-after-prune
-+    if cmp -s objlist-before-prune objlist-after-prune; then
-+        fatal "Prune didn't delete anything!"
-+    fi
-+    rm repo3 objlist-before-prune objlist-after-prune -rf
-+    echo "ok prune"
- fi
--rm repo3 objlist-before-prune objlist-after-prune -rf
--echo "ok prune"
- cd ${test_tmpdir}
- rm repo3 -rf
-@@ -597,14 +611,16 @@ $OSTREE show --print-detached-metadata-key=SIGNATURE test2 > test2-meta
- assert_file_has_content test2-meta "HANCOCK"
- echo "ok metadata commit with strings"
--cd ${test_tmpdir}
--rm repo2 -rf
--mkdir repo2
--ostree_repo_init repo2 --mode=bare-user
--${CMD_PREFIX} ostree --repo=repo2 pull-local repo
--${CMD_PREFIX} ostree --repo=repo2 show --print-detached-metadata-key=SIGNATURE test2 > test2-meta
--assert_file_has_content test2-meta "HANCOCK"
--echo "ok pull-local after commit metadata"
-+if ! skip_one_without_user_xattrs; then
-+    cd ${test_tmpdir}
-+    rm repo2 -rf
-+    mkdir repo2
-+    ostree_repo_init repo2 --mode=bare-user
-+    ${CMD_PREFIX} ostree --repo=repo2 pull-local repo
-+    ${CMD_PREFIX} ostree --repo=repo2 show --print-detached-metadata-key=SIGNATURE test2 > test2-meta
-+    assert_file_has_content test2-meta "HANCOCK"
-+    echo "ok pull-local after commit metadata"
-+fi
- cd ${test_tmpdir}
- ${CMD_PREFIX} ostree --repo=repo remote --set=tls-permissive=true add aremote http://remote.example.com/repo testos/buildmaster/x86_64-runtime
diff --git a/debian/patches/libtest-Allow-skipping-single-checks-without-user-xattrs.patch b/debian/patches/libtest-Allow-skipping-single-checks-without-user-xattrs.patch
deleted file mode 100644 (file)
index 5f9ef75..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-From: Simon McVittie <smcv@collabora.com>
-Date: Tue, 29 Aug 2017 17:02:18 +0100
-Subject: libtest: Allow skipping single checks without user xattrs
-
-Signed-off-by: Simon McVittie <smcv@debian.org>
-Forwarded: https://github.com/ostreedev/ostree/pull/1120
-Applied-upstream: 2017.11, commit:a7686a0c400524afeb3fad14e04c65105eaf7cdf
----
- tests/libtest.sh | 11 +++++++++++
- 1 file changed, 11 insertions(+)
-
-diff --git a/tests/libtest.sh b/tests/libtest.sh
-index ff09650..7f334c0 100755
---- a/tests/libtest.sh
-+++ b/tests/libtest.sh
-@@ -489,6 +489,17 @@ os_repository_new_commit ()
-     cd ${test_tmpdir}
- }
-+# Usage: if ! skip_one_without_user_xattrs; then ... more tests ...; fi
-+skip_one_without_user_xattrs () {
-+    touch test-xattrs
-+    if ! setfattr -n user.testvalue -v somevalue test-xattrs; then
-+        echo "ok # SKIP - this test requires xattr support"
-+        return 0
-+    else
-+        return 1
-+    fi
-+}
-+
- skip_without_user_xattrs () {
-     touch test-xattrs
-     setfattr -n user.testvalue -v somevalue test-xattrs || \
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644 (file)
index 7bffb17..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-test-libarchive-import-Skip-if-extended-attributes-are-un.patch
-test-pull-bareuser.sh-This-test-uses-bare-user-hence-need.patch
-libtest-Allow-skipping-single-checks-without-user-xattrs.patch
-basic-test-Skip-explicit-uses-of-bare-user-if-no-user-xat.patch
-test-basic-user-only-Skip-final-step-if-no-user-xattrs.patch
-Remove-shebang-from-bash-completions.patch
diff --git a/debian/patches/test-basic-user-only-Skip-final-step-if-no-user-xattrs.patch b/debian/patches/test-basic-user-only-Skip-final-step-if-no-user-xattrs.patch
deleted file mode 100644 (file)
index 3c53752..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-From: Simon McVittie <smcv@collabora.com>
-Date: Tue, 29 Aug 2017 17:03:37 +0100
-Subject: test-basic-user-only: Skip final step if no user xattrs
-
-We don't want to skip the entire test, because the whole point of
-bare-user-only is that it works in the absence of xattrs; but we do
-need to skip this last stage, which explicitly uses a bare-user
-repository.
-
-Signed-off-by: Simon McVittie <smcv@debian.org>
-Forwarded: https://github.com/ostreedev/ostree/pull/1120
-Applied-upstream: 2017.11, commit:3fcd81df86b66c5abb61118d2ef3822304cb5da3
----
- tests/test-basic-user-only.sh | 36 +++++++++++++++++++-----------------
- 1 file changed, 19 insertions(+), 17 deletions(-)
-
-diff --git a/tests/test-basic-user-only.sh b/tests/test-basic-user-only.sh
-index fb071fe..ce69e49 100755
---- a/tests/test-basic-user-only.sh
-+++ b/tests/test-basic-user-only.sh
-@@ -72,21 +72,23 @@ $CMD_PREFIX ostree --repo=repo checkout -U -H content-with-dir-world-writable di
- assert_file_has_mode dir-co/worldwritable-dir 775
- echo "ok didn't make world-writable dir"
--cd ${test_tmpdir}
--rm repo-input -rf
--rm repo -rf
--ostree_repo_init repo init --mode=bare-user-only
--ostree_repo_init repo-input init --mode=bare-user
--rm files -rf && mkdir files
--echo afile > files/afile
--ln -s afile files/afile-link
--$CMD_PREFIX ostree --repo=repo-input commit --canonical-permissions -b testtree --tree=dir=files
--afile_relobjpath=$(ostree_file_path_to_relative_object_path repo-input testtree /afile)
--afile_link_relobjpath=$(ostree_file_path_to_relative_object_path repo-input testtree /afile-link)
--$CMD_PREFIX ostree pull-local --repo=repo repo-input
--assert_files_hardlinked repo/${afile_relobjpath} repo-input/${afile_relobjpath}
--if files_are_hardlinked repo/${afile_link_relobjpath} repo-input/${afile_link_relobjpath}; then
--    assert_not_reached "symlinks hardlinked across bare-user?"
-+if ! skip_one_without_user_xattrs; then
-+    cd ${test_tmpdir}
-+    rm repo-input -rf
-+    rm repo -rf
-+    ostree_repo_init repo init --mode=bare-user-only
-+    ostree_repo_init repo-input init --mode=bare-user
-+    rm files -rf && mkdir files
-+    echo afile > files/afile
-+    ln -s afile files/afile-link
-+    $CMD_PREFIX ostree --repo=repo-input commit --canonical-permissions -b testtree --tree=dir=files
-+    afile_relobjpath=$(ostree_file_path_to_relative_object_path repo-input testtree /afile)
-+    afile_link_relobjpath=$(ostree_file_path_to_relative_object_path repo-input testtree /afile-link)
-+    $CMD_PREFIX ostree pull-local --repo=repo repo-input
-+    assert_files_hardlinked repo/${afile_relobjpath} repo-input/${afile_relobjpath}
-+    if files_are_hardlinked repo/${afile_link_relobjpath} repo-input/${afile_link_relobjpath}; then
-+        assert_not_reached "symlinks hardlinked across bare-user?"
-+    fi
-+    $OSTREE fsck -q
-+    echo "ok hardlink pull from bare-user"
- fi
--$OSTREE fsck -q
--echo "ok hardlink pull from bare-user"
diff --git a/debian/patches/test-libarchive-import-Skip-if-extended-attributes-are-un.patch b/debian/patches/test-libarchive-import-Skip-if-extended-attributes-are-un.patch
deleted file mode 100644 (file)
index 2de0834..0000000
+++ /dev/null
@@ -1,144 +0,0 @@
-From: Simon McVittie <smcv@collabora.com>
-Date: Tue, 29 Aug 2017 16:46:19 +0100
-Subject: test-libarchive-import: Skip if extended attributes are unsupported
-
-This is the case at build-time on some (all?) Debian autobuilders.
-
-Signed-off-by: Simon McVittie <smcv@collabora.com>
-Forwarded: https://github.com/ostreedev/ostree/pull/1120
-Applied-upstream: 2017.11, commit:760ff2f66ec5058b0ddf82fc7dbdd9ffbae44c6b
----
- tests/test-libarchive-import.c | 57 +++++++++++++++++++++++++++++++++++++++++-
- 1 file changed, 56 insertions(+), 1 deletion(-)
-
-diff --git a/tests/test-libarchive-import.c b/tests/test-libarchive-import.c
-index 8f884a6..6047d35 100644
---- a/tests/test-libarchive-import.c
-+++ b/tests/test-libarchive-import.c
-@@ -35,6 +35,7 @@ typedef struct {
-   int fd;
-   int fd_empty;
-   char *tmpd;
-+  GError *skip_all;
- } TestData;
- static void
-@@ -136,7 +137,13 @@ test_data_init (TestData *td)
-     g_assert_cmpint (0, ==, mkdir ("repo", 0755));
-     ostree_repo_create (td->repo, OSTREE_REPO_MODE_BARE_USER, NULL, &error);
--    g_assert_no_error (error);
-+
-+    /* G_IO_ERROR_NOT_SUPPORTED probably means no extended attribute support */
-+    if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED))
-+      g_propagate_prefixed_error (&td->skip_all, g_steal_pointer (&error),
-+                                  "Unable to set up repository: ");
-+    else
-+      g_assert_no_error (error);
-   }
- }
-@@ -169,6 +176,12 @@ test_libarchive_noautocreate_empty (gconstpointer data)
-   OstreeRepoImportArchiveOptions opts = { 0, };
-   glnx_unref_object OstreeMutableTree *mtree = ostree_mutable_tree_new ();
-+  if (td->skip_all != NULL)
-+    {
-+      g_test_skip (td->skip_all->message);
-+      return;
-+    }
-+
-   test_archive_setup (td->fd_empty, a);
-   (void)ostree_repo_import_archive_to_mtree (td->repo, &opts, a, mtree, NULL, NULL, &error);
-@@ -185,6 +198,12 @@ test_libarchive_autocreate_empty (gconstpointer data)
-   OstreeRepoImportArchiveOptions opts = { 0, };
-   glnx_unref_object OstreeMutableTree *mtree = ostree_mutable_tree_new ();
-+  if (td->skip_all != NULL)
-+    {
-+      g_test_skip (td->skip_all->message);
-+      return;
-+    }
-+
-   opts.autocreate_parents = 1;
-   test_archive_setup (td->fd_empty, a);
-@@ -203,6 +222,12 @@ test_libarchive_error_device_file (gconstpointer data)
-   OstreeRepoImportArchiveOptions opts = { 0, };
-   glnx_unref_object OstreeMutableTree *mtree = ostree_mutable_tree_new ();
-+  if (td->skip_all != NULL)
-+    {
-+      g_test_skip (td->skip_all->message);
-+      return;
-+    }
-+
-   test_archive_setup (td->fd, a);
-   (void)ostree_repo_import_archive_to_mtree (td->repo, &opts, a, mtree, NULL, NULL, &error);
-@@ -276,6 +301,12 @@ test_libarchive_ignore_device_file (gconstpointer data)
-   if (skip_if_no_xattr (td))
-     goto out;
-+  if (td->skip_all != NULL)
-+    {
-+      g_test_skip (td->skip_all->message);
-+      goto out;
-+    }
-+
-   test_archive_setup (td->fd, a);
-   opts.ignore_unsupported_content = TRUE;
-@@ -338,6 +369,12 @@ test_libarchive_ostree_convention (gconstpointer data)
-   if (skip_if_no_xattr (td))
-     goto out;
-+  if (td->skip_all != NULL)
-+    {
-+      g_test_skip (td->skip_all->message);
-+      goto out;
-+    }
-+
-   test_archive_setup (td->fd, a);
-   opts.autocreate_parents = TRUE;
-@@ -382,6 +419,12 @@ test_libarchive_xattr_callback (gconstpointer data)
-   if (skip_if_no_xattr (td))
-     goto out;
-+  if (td->skip_all != NULL)
-+    {
-+      g_test_skip (td->skip_all->message);
-+      goto out;
-+    }
-+
-   modifier = ostree_repo_commit_modifier_new (0, NULL, NULL, NULL);
-   ostree_repo_commit_modifier_set_xattr_callback (modifier, xattr_cb,
-                                                   NULL, NULL);
-@@ -437,6 +480,12 @@ entry_pathname_test_helper (gconstpointer data, gboolean on)
-   if (skip_if_no_xattr (td))
-     goto out;
-+  if (td->skip_all != NULL)
-+    {
-+      g_test_skip (td->skip_all->message);
-+      goto out;
-+    }
-+
-   modifier = ostree_repo_commit_modifier_new (0, NULL, NULL, NULL);
-   ostree_repo_commit_modifier_set_xattr_callback (modifier, path_cb,
-                                                   NULL, &met_etc_file);
-@@ -500,6 +549,12 @@ test_libarchive_selinux (gconstpointer data)
-   if (skip_if_no_xattr (td))
-     goto out;
-+  if (td->skip_all != NULL)
-+    {
-+      g_test_skip (td->skip_all->message);
-+      goto out;
-+    }
-+
-   {
-     glnx_unref_object GFile *root = g_file_new_for_path ("/");
diff --git a/debian/patches/test-pull-bareuser.sh-This-test-uses-bare-user-hence-need.patch b/debian/patches/test-pull-bareuser.sh-This-test-uses-bare-user-hence-need.patch
deleted file mode 100644 (file)
index 4be051e..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-From: Simon McVittie <smcv@collabora.com>
-Date: Tue, 29 Aug 2017 17:01:41 +0100
-Subject: test-pull-bareuser.sh: This test uses bare-user, hence needs xattrs
-
-Signed-off-by: Simon McVittie <smcv@debian.org>
-Forwarded: https://github.com/ostreedev/ostree/pull/1120
-Applied-upstream: 2017.11, commit:1d755977c89c9bd360c61e988b9d445d1d5a4d43
----
- tests/test-pull-bareuser.sh | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/tests/test-pull-bareuser.sh b/tests/test-pull-bareuser.sh
-index 0729247..2e35723 100755
---- a/tests/test-pull-bareuser.sh
-+++ b/tests/test-pull-bareuser.sh
-@@ -21,6 +21,7 @@ set -euo pipefail
- . $(dirname $0)/libtest.sh
-+skip_without_user_xattrs
- setup_fake_remote_repo1 "archive"
- repo_mode=bare-user